projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
128d940
)
(face-bold-p): Don't return t if face has lighter
author
Gerd Moellmann
<gerd@gnu.org>
Mon, 6 Sep 1999 15:57:48 +0000
(15:57 +0000)
committer
Gerd Moellmann
<gerd@gnu.org>
Mon, 6 Sep 1999 15:57:48 +0000
(15:57 +0000)
weight than normal.
lisp/faces.el
patch
|
blob
|
history
diff --git
a/lisp/faces.el
b/lisp/faces.el
index 22fdc20855d590b7a4c600e6c775570cca1c48f4..2fef37d49b83a5d868821f4744c513efad822768 100644
(file)
--- a/
lisp/faces.el
+++ b/
lisp/faces.el
@@
-370,7
+370,7
@@
If FRAME is t, report on the defaults for face FACE (for new frames).
If FRAME is omitted or nil, use the selected frame.
Use `face-attribute' for finer control."
(let ((bold (face-attribute face :weight frame)))
- (
not (memq bold '(normal unspecified)
))))
+ (
memq bold '(semi-bold bold extra-bold ultra-bold
))))
(defun face-italic-p (face &optional frame)